home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / othell1a / config.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1998-11-11  |  4.1 KB  |  139 lines

  1. VERSION 5.00
  2. Begin VB.Form Form2 
  3.    BorderStyle     =   0  'None
  4.    Caption         =   "CONFIG"
  5.    ClientHeight    =   1980
  6.    ClientLeft      =   0
  7.    ClientTop       =   0
  8.    ClientWidth     =   3540
  9.    LinkTopic       =   "Form2"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   1980
  13.    ScaleWidth      =   3540
  14.    ShowInTaskbar   =   0   'False
  15.    StartUpPosition =   2  'CenterScreen
  16.    Begin VB.CommandButton Command1 
  17.       Caption         =   "&Ok"
  18.       BeginProperty Font 
  19.          Name            =   "Arial"
  20.          Size            =   9.75
  21.          Charset         =   0
  22.          Weight          =   700
  23.          Underline       =   0   'False
  24.          Italic          =   0   'False
  25.          Strikethrough   =   0   'False
  26.       EndProperty
  27.       Height          =   375
  28.       Left            =   1200
  29.       TabIndex        =   4
  30.       Top             =   1320
  31.       Width           =   1095
  32.    End
  33.    Begin VB.TextBox txtWhite 
  34.       BeginProperty Font 
  35.          Name            =   "Arial"
  36.          Size            =   9.75
  37.          Charset         =   0
  38.          Weight          =   700
  39.          Underline       =   0   'False
  40.          Italic          =   0   'False
  41.          Strikethrough   =   0   'False
  42.       EndProperty
  43.       Height          =   375
  44.       Left            =   1200
  45.       TabIndex        =   3
  46.       Text            =   "White"
  47.       Top             =   720
  48.       Width           =   1935
  49.    End
  50.    Begin VB.TextBox txtBlack 
  51.       BeginProperty Font 
  52.          Name            =   "Arial"
  53.          Size            =   9.75
  54.          Charset         =   0
  55.          Weight          =   700
  56.          Underline       =   0   'False
  57.          Italic          =   0   'False
  58.          Strikethrough   =   0   'False
  59.       EndProperty
  60.       Height          =   375
  61.       Left            =   1200
  62.       TabIndex        =   2
  63.       Text            =   "Black"
  64.       Top             =   240
  65.       Width           =   1935
  66.    End
  67.    Begin VB.Line Line4 
  68.       BorderWidth     =   5
  69.       X1              =   3525
  70.       X2              =   3525
  71.       Y1              =   0
  72.       Y2              =   1920
  73.    End
  74.    Begin VB.Line Line3 
  75.       BorderWidth     =   5
  76.       X1              =   0
  77.       X2              =   3600
  78.       Y1              =   0
  79.       Y2              =   0
  80.    End
  81.    Begin VB.Line Line2 
  82.       BorderWidth     =   5
  83.       X1              =   0
  84.       X2              =   0
  85.       Y1              =   0
  86.       Y2              =   1920
  87.    End
  88.    Begin VB.Line Line1 
  89.       BorderWidth     =   5
  90.       X1              =   0
  91.       X2              =   3480
  92.       Y1              =   1960
  93.       Y2              =   1960
  94.    End
  95.    Begin VB.Label Label2 
  96.       Caption         =   "White : "
  97.       BeginProperty Font 
  98.          Name            =   "Arial"
  99.          Size            =   9.75
  100.          Charset         =   0
  101.          Weight          =   700
  102.          Underline       =   0   'False
  103.          Italic          =   0   'False
  104.          Strikethrough   =   0   'False
  105.       EndProperty
  106.       Height          =   255
  107.       Left            =   240
  108.       TabIndex        =   1
  109.       Top             =   720
  110.       Width           =   855
  111.    End
  112.    Begin VB.Label Label1 
  113.       Caption         =   "Black : "
  114.       BeginProperty Font 
  115.          Name            =   "Arial"
  116.          Size            =   9.75
  117.          Charset         =   0
  118.          Weight          =   700
  119.          Underline       =   0   'False
  120.          Italic          =   0   'False
  121.          Strikethrough   =   0   'False
  122.       EndProperty
  123.       Height          =   255
  124.       Left            =   240
  125.       TabIndex        =   0
  126.       Top             =   240
  127.       Width           =   855
  128.    End
  129. Attribute VB_Name = "Form2"
  130. Attribute VB_GlobalNameSpace = False
  131. Attribute VB_Creatable = False
  132. Attribute VB_PredeclaredId = True
  133. Attribute VB_Exposed = False
  134. Private Sub Command1_Click()
  135. Form2.Visible = False
  136. Form1.lblWhite.Caption = Form2.txtWhite
  137. Form1.lblBlack.Caption = Form2.txtBlack
  138. End Sub
  139.